{% extends 'base.html' %} {% load humanize %} {% load custom_filters %} {% load math_extras %} {% block content %}

Etat des stocks


{% csrf_token %}
⏳ Traitement en cours...
Veuillez patienter
{% for produit in Articles %} {% endfor %}
Id Code Désignation Quantité en Stock Quantité Disponible
{{ produit.id }} {{ produit.default_code }} {{ produit.name }} {{ produit.qty_available|intspace }} {{ produit.virtual_available|intspace }}
{% endblock %}